The computed field is returning a NotesDatabase object and can't serialize that. That's why you get the exception.
Why do you want to return the NotesDatabase object in a computed field? If you change the last line in your compute field to
return db.getFilePath()
the error is probably gone.
Mark